home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / wcedbtst / wcedbdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  56 lines

  1. // WCE_DatabaseDoc.h : interface of the CWCEDBDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5.  
  6. class CWCEDBDoc : public CDocument
  7. {
  8. protected: // create from serialization only
  9.     CWCEDBDoc();
  10.     DECLARE_DYNCREATE(CWCEDBDoc)
  11.  
  12. // Attributes
  13. public:
  14.     CStringArray Output;
  15.  
  16. // Operations
  17. public:
  18.     BOOL GeneratePeopleDB();
  19.     BOOL PrintPeopleDB(CCeDBDatabase*);
  20.     void PrintIndex(CCeDBDatabase*); 
  21.     void PrintPerson(CCeDBRecord*); 
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CWCEDBDoc)
  26.     public:
  27.     virtual BOOL OnNewDocument();
  28.     virtual void Serialize(CArchive& ar);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CWCEDBDoc();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:
  40.  
  41. // Generated message map functions
  42. protected:
  43.     //{{AFX_MSG(CWCEDBDoc)
  44.     afx_msg void OnFileBasicTests();
  45.     afx_msg void OnFileClear();
  46.     afx_msg void OnFileEnum();
  47.     afx_msg void OnFileSortTest();
  48.     afx_msg void OnFileSeekTest();
  49.     afx_msg void OnFileDeletionTest();
  50.     afx_msg void OnFileModifyTest();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.